home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH23.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-02  |  194 b   |  13 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4. int number = 7;
  5. functiona();
  6. printf("A function sandwich\n");
  7. functiona();
  8. }
  9. functiona(int number)
  10. {
  11.  printf("The value of number is %d.\n", number);
  12.  }
  13.